home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / demos / mhdemo.zip / ROUTES < prev    next >
Text File  |  1993-02-19  |  2KB  |  57 lines

  1. #*************************************************************************
  2. # FILE..........: routes
  3. # AUTHOR........: Alexander V. Shturm
  4. # COPYRIGHT.....: (C) 1993, SuperPhysica Center, St.-Petersburg, Russia.
  5. # VERSION.......: 1.00 [beta]
  6. # DESCRIPTION...: WinUUCP Communications Routing Table
  7. # HISTORY.......: DATE     COMMENT
  8. #                 -------- ----------------------------------------------
  9. #                 01-02-93 Last Format Update.
  10. #*************************************************************************
  11.  
  12. # Domain Pattern        Metric   Path+Flags
  13.  
  14. #myhost.uucp             0        @
  15. #my.domain.org           0        @
  16.  
  17. #my.boss.domain.org      20       bosshost!/S
  18.  
  19. #*                       50       defhost!
  20.  
  21. # =======================================================================
  22. #
  23. # ==> Pattern:
  24. #       a method to determine further path for specified domain.
  25. #
  26. #  1. If a pattern is without leading asterisk, its entry needs
  27. #     exact compare with domain.
  28. #  2. The asterisk means "any subdomains may correspond to this position".
  29. #     Asterisk may be only in first position.
  30. #
  31. # ==> Metrics:  (isn't supported now)
  32. #       a relative estimation of the cost of transmission by this way.
  33. #
  34. # ==> Path:
  35. #       a further path (from our host) of the message.
  36. #
  37. #  1. "@" - route the message via local host (leave only user name).
  38. #  2. "-" - prohibit routing for this pattern.
  39. #  3. a message will be directed to first host of the path,
  40. #     other hosts will be added to the address.
  41. #
  42. # ==> Flags:
  43. #       a method to modify the way the mailer uses to route messages.
  44. #
  45. #  1. /S - cut off the @domain part from the address, leave only user name.
  46. #          This is useful for "silly" systems (UUCP-only, for instance).
  47. #  2. /F - don't generate "... remote from ..." in the first line "From".
  48. #          Useful for gates to other networks. (?)
  49. #  3. /I - run session immediately. (isn't supported yet)
  50. #  4. /B - send via BathMail. (isn't supported yet)
  51. #
  52. #  NOTE: In the case of routing table definition error(s), a letter
  53. #        describing the error(s) will be sent to system administrator.
  54. #        Such a letter will be generated every time you run the mailer.
  55. #
  56. # =======================================================================
  57.